Hyperlink Properties
am 05.12.2007 06:33:16 von Sales
Sorry, a real simple question and maybe one not for this group.
Have just tried a php pagination tutorial which works fine. The line
that produces the "Previous" hyperlink is as below and this works
fine. But...
echo "
$records_per_page) . ">Previous Page";
When I try to change the hyperlink properties in the html code to
effect the font style, size and colour as below...
echo "
$records_per_page) . " style="font-family: Arial; font-size: 10pt;
color: #0000FF">Previous Page";
I get the following error message.
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'
I have looked at the normal format of a hyperlink and cannot see what
is wrong...
Anyone???
Alec
Re: Hyperlink Properties
am 05.12.2007 06:42:28 von luiheidsgoeroe
On Wed, 05 Dec 2007 06:33:16 +0100, wrote:
> Sorry, a real simple question and maybe one not for this group.
>
> Have just tried a php pagination tutorial which works fine. The line
> that produces the "Previous" hyperlink is as below and this works
> fine. But...
>
> echo "
> $records_per_page) . ">Previous Page";
>
> When I try to change the hyperlink properties in the html code to
> effect the font style, size and colour as below...
>
> echo "
> $records_per_page) . " style=3D"font-family: Arial; font-size: 10pt;
> color: #0000FF">Previous Page";
>
> I get the following error message.
>
> Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'
>
> I have looked at the normal format of a hyperlink and cannot see what
> is wrong...
Get an editor with descent syntax-highlighting, you'd spot it immediatel=
y..
echo '
$records_per_page) . '" style=3D"font-family: Arial;font-size: 10pt;colo=
r: =
#0000FF">Previous Page';
-- =
Rik Wasmus